70e151f1774d7f0c74a4cf414bdbd3597014e9d2,tests/gdx-tests/src/com/badlogic/gdx/tests/BitmapFontTest.java,BitmapFontTest,surfaceCreated,#,26

Before Change


		cache2 = font.cacheMultiLineText(null, text, 5, 310, Color.RED, 470, BitmapFont.HAlignment.LEFT);

		text = "How quickly\ndaft jumping zebras vex.";
		cache3 = font.cacheMultiLineText(null, text, 5, 210, blue, 470, BitmapFont.HAlignment.CENTER);

		text = "Kerning: LYA moo";
		cache4 = font.cacheText(null, text, 210, 76, Color.WHITE, 0, text.length() - 3);

After Change


		font.cacheMultiLineText(cache2, text, 5, 310, Color.RED, 470, BitmapFont.HAlignment.LEFT);

		text = "How quickly\ndaft jumping zebras vex.";
		font.cacheMultiLineText(cache3, text, 5, 210, blue, 470, BitmapFont.HAlignment.CENTER);

		text = "Kerning: LYA moo";
		font.cacheText(cache4, text, 210, 76, Color.WHITE, 0, text.length() - 3);